home *** CD-ROM | disk | FTP | other *** search
/ Minami 58 / MINAMI58.ISO / Varios / Juegos Flash / Gold Yard.exe / scripts / DefineSprite_390 / frame_20 / DoAction.as
Text File  |  2003-04-29  |  617b  |  33 lines

  1. if(path == cells)
  2. {
  3.    path = 1;
  4.    first = 1;
  5.    if(direction == "forth")
  6.    {
  7.       direction = "back";
  8.    }
  9.    else if(direction == "back")
  10.    {
  11.       direction = "forth";
  12.    }
  13. }
  14. if(direction == "forth")
  15. {
  16.    skullfb.gotoAndPlay("forth");
  17.    if(first != 1)
  18.    {
  19.       setProperty("skullfb", _X, getProperty(skullfb, _X) + _root.library.planecellx * 2);
  20.    }
  21. }
  22. else if(direction == "back")
  23. {
  24.    skullfb.gotoAndPlay("back");
  25.    if(first != 1)
  26.    {
  27.       setProperty("skullfb", _X, getProperty(skullfb, _X) - _root.library.planecellx * 2);
  28.    }
  29. }
  30. first = 0;
  31. path += 1;
  32. gotoAndPlay(2);
  33.